
        :root {
            --hero-primary-bg: #000000; /* Pure Black Background */
            --hero-accent-color: #ffbd39; /* Gold/Amber */
            --hero-text-white: #ffffff; /* White text */
            --hero-button-bg: #ffbd39; /* Gold button */
            --hero-button-hover-bg: #e6a72e; /* Slightly darker gold on hover */
            --hero-countdown-bg: #222222; /* Dark grey for countdown */
            --hero-countdown-text: #ffffff; /* White text for countdown */
            --hero-discount-color: #ffbd39; /* Gold for discount percent */
            --hero-box-bg: rgba(255, 255, 255, 0.05); /* Very subtle transparent white for box */
        }

        /* BODY TAG IS NOT USED FOR STYLING AS PER REQUEST */
   

        .hero-section {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 90vh; /* Adjust height as needed */
            padding: 50px 20px;
            position: relative;
            overflow: hidden;
        }

        /* Background shapes - subtle glow on black */
        .hero-section::before,
        .hero-section::after {
            content: '';
            position: absolute;
            background: radial-gradient(circle, rgba(255,189,57,0.1) 0%, rgba(0,0,0,0) 70%); /* Fading gold glow */
            border-radius: 50%; /* Make them circular glows */
            z-index: 1;
            filter: blur(50px); /* Very soft blur */
        }

        .hero-section::before { /* Top-right glow */
            width: 500px;
            height: 500px;
            top: -100px;
            right: -100px;
        }

        .hero-section::after { /* Bottom-left glow */
            width: 400px;
            height: 400px;
            bottom: -80px;
            left: -80px;
        }

        .hero-container {
            display: flex;
            flex-wrap: wrap; /* Allows wrapping on smaller screens */
            gap: 40px; /* Space between left and right sections */
            width: 100%;
            max-width: 1200px;
            background-color: var(--hero-box-bg); /* Very subtle transparent white */
            border-radius: 20px;
            /* 3D Effect for container */
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), /* Darker, more prominent shadow */
                        0 0 0 2px var(--hero-accent-color), /* Thin gold border */
                        0 0 20px rgba(255, 189, 57, 0.3); /* Subtle gold glow around the box */
            padding: 40px;
            z-index: 2; /* Ensure content is on top */
            position: relative; /* For inner elements to be positioned relative to this */
            perspective: 1000px; /* For child 3D transforms */
            transform: translateZ(0); /* Hardware acceleration */
            border: 1px solid rgba(255, 255, 255, 0.1); /* Slight white internal border */
        }

        .hero-left-content {
            flex: 1;
            min-width: 350px; /* Ensures content doesn't get too squished */
            padding-right: 20px;
            color: var(--hero-text-white); /* Ensure text is white */
        }

        .hero-right-image-section {
            flex: 1;
            min-width: 450px; /* Ensures image section has enough space */
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Discount badge is now a "Hire Me" badge */
        .hero-hire-badge { /* Renamed from hero-discount-badge */
            position: absolute;
            top: 20px; /* Adjust as per desired position */
            right: 20px; /* Adjust as per desired position */
            background: var(--hero-accent-color); /* Gold background */
            color: var(--hero-primary-bg); /* Black text on gold */
            padding: 10px 20px;
            border-radius: 10px;
            font-size: 2.5em;
            font-weight: 700;
            transform: rotate(5deg) translateZ(20px); /* 3D translate for badge */
            z-index: 10;
            box-shadow: 0 5px 15px rgba(255, 189, 57, 0.5); /* Gold shadow for badge */
            text-transform: uppercase; /* Make it look like a strong call to action */
        }

        .hero-hire-badge span {
            font-size: 0.5em;
            display: block;
            margin-top: -5px;
            color: var(--hero-primary-bg); /* Ensure span text is also black */
        }

        .hero-image-container {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            /* 3D Effect for image */
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), /* Dark shadow */
                        0 0 0 5px var(--hero-accent-color), /* Thin gold border around image */
                        0 0 20px rgba(255, 189, 57, 0.4); /* Gold glow around image */
            position: relative; /* For z-index to work against other elements */
            z-index: 5;
            transform: translateZ(10px); /* Push image forward */
            transition: transform 0.3s ease-out; /* Smooth hover effect */
        }

        .hero-image-container img:hover {
            transform: translateZ(30px) scale(1.02); /* Pop out more on hover */
        }

        .hero-right-image-bg-shape {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255,189,57,0.2) 0%, rgba(255,189,57,0.05) 100%); /* Subtle gold gradient */
            border-radius: 20px;
            transform: rotate(-5deg) translateZ(-5px); /* Push shape backward slightly */
            transform-origin: center center;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4); /* Darker shadow */
            z-index: 2; /* Below the image */
            border: 1px solid rgba(255, 189, 57, 0.2); /* Subtle gold border for the shape */
        }


        .hero-left-content h1 {
            font-size: 3.2em;
            color: var(--hero-text-white); /* White heading */
            margin-bottom: 10px;
            line-height: 1.1;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* More prominent text shadow for contrast */
        }

        .hero-offer-details {
            font-size: 1.2em;
            color: var(--hero-accent-color); /* Gold for offer details */
            font-weight: 600;
            margin-bottom: 25px;
        }

        /* Typing animation specific styles */
        #hero-typing-animation { /* ID with prefix */
            color: var(--hero-accent-color); /* Gold color for typing text */
            font-weight: 700;
            display: inline-block; /* Important for cursor effect */
            border-right: 2px solid var(--hero-text-white); /* Typing cursor */
            padding-right: 5px; /* Space for cursor */
            animation: hero-blink-caret 0.75s step-end infinite; /* Cursor animation */
        }

        /* Cursor blinking animation */
        @keyframes hero-blink-caret {
            from, to { border-color: transparent }
            50% { border-color: var(--hero-text-white); }
        }


        .hero-features-list {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }

        .hero-features-list li {
            margin-bottom: 15px;
            font-size: 1.1em;
            display: flex;
            align-items: center;
            color: var(--hero-text-white); /* White text for features */
        }

        .hero-features-list li::before {
            content: '✔';
            color: var(--hero-accent-color); /* Gold tick mark */
            margin-right: 10px;
            font-size: 1.3em;
            font-weight: bold;
        }

        .hero-price-section { /* This section might be removed or repurposed for services */
            margin-bottom: 30px;
            display: flex;
            align-items: baseline;
            gap: 10px;
        }

        .hero-price {
            font-size: 3em;
            font-weight: 700;
            color: var(--hero-text-white); /* White price */
        }

        .hero-price small {
            font-size: 0.5em;
            vertical-align: middle;
            font-weight: 400;
            color: var(--hero-text-white); /* White for small text */
        }

        .hero-months-free {
            font-size: 1.1em;
            font-weight: 600;
            color: var(--hero-accent-color); /* Gold for months free */
        }

        .hero-cta-section {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .hero-start-button {
            background-color: var(--hero-button-bg); /* Gold button */
            color: var(--hero-primary-bg); /* Black text on gold button */
            padding: 15px 30px;
            border: none;
            border-radius: 8px;
            font-size: 1.2em;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease; /* Add transform transition */
            text-decoration: none;
        }

        .hero-start-button:hover {
            background-color: var(--hero-button-hover-bg); /* Darker gold on hover */
            transform: translateY(-3px); /* Lift button on hover */
            box-shadow: 0 8px 15px rgba(255, 189, 57, 0.4); /* Gold shadow on hover */
        }

        .hero-countdown-timer { /* This might be removed or repurposed */
            background-color: var(--hero-countdown-bg); /* Dark grey for countdown */
            color: var(--hero-countdown-text); /* White text for countdown */
            padding: 12px 20px;
            border-radius: 8px;
            font-size: 1.1em;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.5); /* Darker shadow for depth */
            border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle white border */
        }

        .hero-guarantee {
            margin-top: 25px;
            font-size: 0.9em;
            color: var(--hero-text-white); /* White text for guarantee */
            display: flex;
            align-items: center;
        }

        .hero-guarantee::before {
            content: 'ⓘ'; /* Information icon */
            margin-right: 8px;
            color: var(--hero-accent-color); /* Gold info icon */
            font-size: 1.1em;
        }


        /* Responsive adjustments */
        @media (max-width: 1024px) {
            .hero-container {
                flex-direction: column;
                align-items: center;
                padding: 30px;
                gap: 30px;
            }

            .hero-left-content, .hero-right-image-section {
                padding-right: 0;
                min-width: unset;
                width: 100%;
                text-align: center;
            }

            .hero-right-image-section {
                order: -1; /* Image section comes first on smaller screens */
            }

            .hero-left-content h1 {
                font-size: 2.5em;
            }

            .hero-offer-details {
                font-size: 1.1em;
            }

            .hero-features-list {
                text-align: left; /* Keep list items aligned left */
                width: fit-content;
                margin-left: auto;
                margin-right: auto;
            }

            .hero-price-section {
                justify-content: center;
            }

            .hero-cta-section {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 30px 15px;
            }

            .hero-container {
                padding: 25px;
            }

            .hero-left-content h1 {
                font-size: 2em;
            }

            .hero-offer-details {
                font-size: 1em;
            }

            .hero-price {
                font-size: 2.5em;
            }

            .hero-start-button {
                padding: 12px 25px;
                font-size: 1.1em;
            }

            .hero-countdown-timer {
                padding: 10px 15px;
                font-size: 1em;
            }

            .hero-hire-badge { /* Renamed from hero-discount-badge */
                font-size: 2em;
                padding: 8px 15px;
            }
        }

        @media (max-width: 480px) {
            .hero-container {
                border-radius: 15px;
                padding: 20px;
            }

            .hero-left-content h1 {
                font-size: 1.8em;
            }

            .hero-hire-badge { /* Renamed from hero-discount-badge */
                font-size: 1.8em;
                top: 10px;
                right: 10px;
            }

            .hero-section::before,
            .hero-section::after {
                transform: rotate(0deg); /* Reduce rotation on very small screens */
            }
        }
        
           @media (max-width: 767px) {
        .payfooter {
            position: static !important;
        }
    }
   